[__GNUC__ >= 2]: Don't include alloca.h.
authorRichard M. Stallman <rms@gnu.org>
Fri, 4 Jun 1993 05:21:01 +0000 (05:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 4 Jun 1993 05:21:01 +0000 (05:21 +0000)
src/m/sparc.h

index 392189a9f5e4162af899e772fb9e52fc4949294b..dde025563b660932cbfd254da9ec11f0de1da04d 100644 (file)
@@ -5,7 +5,7 @@ This file is part of GNU Emacs.
 
 GNU Emacs is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 1, or (at your option)
+the Free Software Foundation; either version 2, or (at your option)
 any later version.
 
 GNU Emacs is distributed in the hope that it will be useful,
@@ -81,7 +81,7 @@ NOTE-END  */
    in the file alloca.s should be used.  */
 
 #define HAVE_ALLOCA
-#if __GNUC__ >= 2 /* Modern versions of GCC handle alloca directly.  */
+#if __GNUC__ < 2 /* Modern versions of GCC handle alloca directly.  */
 #include <alloca.h>
 #endif